home *** CD-ROM | disk | FTP | other *** search
/ Speccy ClassiX 1998 / Speccy ClassiX 98.iso / amiga_system / the_aminet / dev / gcc / ixemulsrc.lha / ixemul-41.4 / gnulib / eprintf.c < prev    next >
C/C++ Source or Header  |  1994-08-19  |  283b  |  14 lines

  1. #include <stdio.h>
  2. /* This is used by the `assert' macro.  */
  3. void
  4. __eprintf (string, expression, line, filename)
  5.      char *string;
  6.      char *expression;
  7.      int line;
  8.      char *filename;
  9. {
  10.   fprintf (stderr, string, expression, line, filename);
  11.   fflush (stderr);
  12.   abort ();
  13. }
  14.